home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / Parser / unit1.dfm / unit1.txt
Encoding:
Text File  |  1998-07-05  |  3.4 KB  |  195 lines

  1. object Form1: TForm1
  2.   Left = 235
  3.   Top = 167
  4.   Width = 553
  5.   Height = 389
  6.   ActiveControl = RadioGroup1
  7.   Caption = 'Form1'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clBlack
  10.   Font.Height = -12
  11.   Font.Name = 'Arial'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 15
  16.   object SpeedButton1: TSpeedButton
  17.     Left = 8
  18.     Top = 40
  19.     Width = 129
  20.     Height = 29
  21.     Caption = '&Parse'
  22.     OnClick = SpeedButton1Click
  23.   end
  24.   object SpeedButton2: TSpeedButton
  25.     Left = 8
  26.     Top = 8
  27.     Width = 129
  28.     Height = 29
  29.     Caption = 'Pick &File'
  30.     OnClick = SpeedButton2Click
  31.   end
  32.   object EOF: TLabel
  33.     Left = 123
  34.     Top = 105
  35.     Width = 7
  36.     Height = 15
  37.     Alignment = taRightJustify
  38.     Caption = '0'
  39.   end
  40.   object Symbol: TLabel
  41.     Left = 123
  42.     Top = 124
  43.     Width = 7
  44.     Height = 15
  45.     Alignment = taRightJustify
  46.     Caption = '0'
  47.   end
  48.   object StringL: TLabel
  49.     Left = 123
  50.     Top = 142
  51.     Width = 7
  52.     Height = 15
  53.     Alignment = taRightJustify
  54.     Caption = '0'
  55.   end
  56.   object IntegerL: TLabel
  57.     Left = 123
  58.     Top = 161
  59.     Width = 7
  60.     Height = 15
  61.     Alignment = taRightJustify
  62.     Caption = '0'
  63.   end
  64.   object FloatL: TLabel
  65.     Left = 123
  66.     Top = 180
  67.     Width = 7
  68.     Height = 15
  69.     Alignment = taRightJustify
  70.     Caption = '0'
  71.   end
  72.   object Label6: TLabel
  73.     Left = 12
  74.     Top = 104
  75.     Width = 37
  76.     Height = 15
  77.     Caption = 'toEOF:'
  78.   end
  79.   object Label7: TLabel
  80.     Left = 12
  81.     Top = 123
  82.     Width = 54
  83.     Height = 15
  84.     Caption = 'toSymbol:'
  85.   end
  86.   object Label8: TLabel
  87.     Left = 12
  88.     Top = 141
  89.     Width = 45
  90.     Height = 15
  91.     Caption = 'toString:'
  92.   end
  93.   object Label9: TLabel
  94.     Left = 12
  95.     Top = 160
  96.     Width = 51
  97.     Height = 15
  98.     Caption = 'toInteger:'
  99.   end
  100.   object Label10: TLabel
  101.     Left = 12
  102.     Top = 179
  103.     Width = 40
  104.     Height = 15
  105.     Caption = 'toFloat:'
  106.   end
  107.   object Label11: TLabel
  108.     Left = 12
  109.     Top = 198
  110.     Width = 68
  111.     Height = 15
  112.     Caption = 'toComment:'
  113.   end
  114.   object Comment: TLabel
  115.     Left = 123
  116.     Top = 199
  117.     Width = 7
  118.     Height = 15
  119.     Alignment = taRightJustify
  120.     Caption = '0'
  121.   end
  122.   object Label13: TLabel
  123.     Left = 12
  124.     Top = 216
  125.     Width = 64
  126.     Height = 15
  127.     Caption = 'toOpenTag:'
  128.   end
  129.   object Label14: TLabel
  130.     Left = 12
  131.     Top = 235
  132.     Width = 67
  133.     Height = 15
  134.     Caption = 'toCloseTag:'
  135.   end
  136.   object OpenTag: TLabel
  137.     Left = 123
  138.     Top = 217
  139.     Width = 7
  140.     Height = 15
  141.     Alignment = taRightJustify
  142.     Caption = '0'
  143.   end
  144.   object CloseTag: TLabel
  145.     Left = 123
  146.     Top = 236
  147.     Width = 7
  148.     Height = 15
  149.     Alignment = taRightJustify
  150.     Caption = '0'
  151.   end
  152.   object SpeedButton3: TSpeedButton
  153.     Left = 8
  154.     Top = 72
  155.     Width = 129
  156.     Height = 29
  157.     Caption = '&Abort'
  158.     OnClick = SpeedButton3Click
  159.   end
  160.   object RadioGroup1: TRadioGroup
  161.     Left = 8
  162.     Top = 252
  163.     Width = 129
  164.     Height = 101
  165.     ItemIndex = 0
  166.     Items.Strings = (
  167.       'CSV Parser'
  168.       'Text Parser'
  169.       'Pascal Parser'
  170.       'Enhanced Parser'
  171.       'Html Parser')
  172.     TabOrder = 0
  173.   end
  174.   object Memo1: TMemo
  175.     Left = 148
  176.     Top = 8
  177.     Width = 389
  178.     Height = 345
  179.     ScrollBars = ssBoth
  180.     TabOrder = 1
  181.   end
  182.   object OpenDialog1: TOpenDialog
  183.     Filter = 
  184.       'Text files (*.txt)|*.txt|Pascal files (*.pas)|*.pas|Html files (' +
  185.       '*.htm)|*.htm'
  186.     Left = 60
  187.     Top = 304
  188.   end
  189.   object AParser: ThgsParser
  190.     OnParse = AParserParse
  191.     Left = 92
  192.     Top = 304
  193.   end
  194. end
  195.